From 1d377e1b3dde718c51087b2e27ddce6d16cbef82 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 19 Feb 2004 20:23:01 +0000 Subject: [PATCH] Chain to the parent's ::finalize() handler. Fixes #134885; caught by Jan 2004-02-19 Federico Mena Quintero * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize): Chain to the parent's ::finalize() handler. Fixes #134885; caught by Jan Arne Petersen. --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-4 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gtk/gtkfilechooserdialog.c | 2 ++ 6 files changed, 32 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8b2d7f72bc..154ceda360 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-02-19 Federico Mena Quintero + + * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize): + Chain to the parent's ::finalize() handler. Fixes #134885; caught + by Jan Arne Petersen. + 2004-02-19 Mark McLoughlin Make the entire expander widget width prelight as suggested diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 8b2d7f72bc..154ceda360 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-02-19 Federico Mena Quintero + + * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize): + Chain to the parent's ::finalize() handler. Fixes #134885; caught + by Jan Arne Petersen. + 2004-02-19 Mark McLoughlin Make the entire expander widget width prelight as suggested diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 8b2d7f72bc..154ceda360 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +2004-02-19 Federico Mena Quintero + + * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize): + Chain to the parent's ::finalize() handler. Fixes #134885; caught + by Jan Arne Petersen. + 2004-02-19 Mark McLoughlin Make the entire expander widget width prelight as suggested diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 8b2d7f72bc..154ceda360 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-02-19 Federico Mena Quintero + + * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize): + Chain to the parent's ::finalize() handler. Fixes #134885; caught + by Jan Arne Petersen. + 2004-02-19 Mark McLoughlin Make the entire expander widget width prelight as suggested diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 8b2d7f72bc..154ceda360 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-02-19 Federico Mena Quintero + + * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize): + Chain to the parent's ::finalize() handler. Fixes #134885; caught + by Jan Arne Petersen. + 2004-02-19 Mark McLoughlin Make the entire expander widget width prelight as suggested diff --git a/gtk/gtkfilechooserdialog.c b/gtk/gtkfilechooserdialog.c index 8ce52c3988..9b0c30b784 100644 --- a/gtk/gtkfilechooserdialog.c +++ b/gtk/gtkfilechooserdialog.c @@ -138,6 +138,8 @@ gtk_file_chooser_dialog_finalize (GObject *object) GtkFileChooserDialog *dialog = GTK_FILE_CHOOSER_DIALOG (object); g_free (dialog->priv->file_system); + + G_OBJECT_CLASS (parent_class)->finalize (object); } /* Callback used when the user activates a file in the file chooser widget */ -- 2.30.2